home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Musik / Misc / Amster / Source / include / search.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  742 b   |  36 lines

  1. /*
  2. ** Search Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "include/mui.h"
  8.  
  9. #ifndef AMSTER_SEARCH_H
  10. #define AMSTER_SEARCH_H
  11.  
  12. extern int search_state;
  13.  
  14. struct searchdata {
  15.     u_long *str, *maxstr, *snick;
  16.     u_long *pop;
  17.     u_long *popspeed, *popspeedval, *popbit, *popbitval, *popfreq, *popfreqval;
  18.     u_long *LV_Search;
  19. };
  20.  
  21. MUIF search_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  22.  
  23. #define SEARCH_GO       0x5001
  24. #define SEARCH_CLEAR    0x5002
  25. #define SEARCH_NICK     0x5004
  26. #define SEARCH_FOUND    0x5005
  27. #define SEARCH_RESET    0x5006
  28. #define SEARCH_TOGGLE   0x5007
  29. #define SEARCH_SET      0x5009
  30. #define SEARCH_GET      0x5010
  31. #define SEARCH_USE      0x5011
  32. #define SEARCH_GETSTATE 0x5012
  33.  
  34.  
  35. #endif    /* AMSTER_SEARCH_H */
  36.